.memorial-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.circle {
    width: 45px;
    height: 45px;
    background: #A9B98E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: #A9B98E;
}

.right {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
    letter-spacing: 0.03em;
    padding-bottom: 10px;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Tablet */
@media (max-width: 768px) {
    .memorial-steps {
        gap: 0;
    }

    .step {
        gap: 14px;
    }

    .circle {
        width: 38px;
        height: 38px;
    }

    .right {
        font-size: 16px;
        line-height: 26px;
        padding-bottom: 8px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .step {
        gap: 10px;
    }

    .circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .right {
        font-size: 14px;
        line-height: 22px;
        padding-bottom: 6px;
    }
}